home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Extra 1997 #6 / Amiga Plus Extra 1997 #6.iso / tools / grafik-tools / superviewel / install_superview < prev    next >
Text File  |  1978-06-11  |  4KB  |  119 lines

  1. ; $VER: Install_SuperView.script V5.70 (30.11.96)
  2. ; © 1993-96 by Andreas R. Kleinert.
  3. ; Italian strings by Alessandro Basso (cralex@dei.unipd.it)
  4.  
  5. (welcome "SuperView Installation Utility")
  6.  
  7.  
  8. ; *** english is default language
  9.  
  10.     (set MSG_wrong_OS       (cat "You need at least OS V2.04 to run SuperView !\n\n"
  11.                                  "SuperView will not run with your system configuration !"))
  12.     (set MSG_InstallingSuperView "Installing SuperView now. Libraries have to be installed separately !")
  13.     (set MSG_SelectPath          "Select path to install SuperView to")
  14.     (set MSG_InstallingCatalogs  "Installing Catalog-Files for OS V2.1+\nCode localization.")
  15.     (set MSG_SelectCatalogPath   "Select path to install Catalogs to")
  16.     (set MSG_SuperViewPath       "Now modifying your S:User-Startup for a search path...")
  17.     (set MSG_CopyPalette         "Copy SuperViewPalette to SYS:WBStartup ?\n(Not with MagicWB, etc.)")
  18.     (set MSG_RunLibInstaller     "Now install Library ?")
  19.     (set MSG_DoInstallSuperView  "SuperView has been installed.")
  20.  
  21.  
  22. (if (= @language "deutsch")
  23.   (
  24.     (set MSG_wrong_OS       (cat "Sie benötigen mindestens OS V2.04 für SuperView !\n\n"
  25.                                  "SuperView wird auf Ihrem System nicht laufen !"))
  26.     (set MSG_InstallingSuperView "Installiere jetzt SuperView. Die Libraries müssen separat installiert werden !")
  27.     (set MSG_SelectPath          "Wählen Sie das Zielverzeichnis für SuperView")
  28.     (set MSG_InstallingCatalogs  "Installiere jetzt die Katalog-Dateien für die\nOS V2.1+ Sprach-Unterstützung.")
  29.     (set MSG_SelectCatalogPath   "Wählen Sie den Pfad für die Katalog-Dateien")
  30.     (set MSG_SuperViewPath       "Modifiziere jetzt S:User-Startup für einen Suchpfad...")
  31.     (set MSG_CopyPalette         "SuperViewPalette nach SYS:WBStartup kopieren ?\n(Nicht mit MagicWB, etc.)")
  32.     (set MSG_RunLibInstaller     "Jetzt Library installieren ?")
  33.     (set MSG_DoInstallSuperView  "SuperView wurde installiert.")
  34.   )
  35. )
  36.  
  37. (if (= @language "italiano")
  38.   (
  39.     (set MSG_wrong_OS       (cat "Ti serve almeno AmigaOS V2.04 per usare SuperView !\n\n"
  40.                                  "SuperView non funzionerà con la tua configurazione di sistema !"))
  41.     (set MSG_InstallingSuperView "Ora installo SuperView. Le Librerie dovranno essere installate separatamente !")
  42.     (set MSG_SelectPath          "Seleziona il percorso dove installare SuperView")
  43.     (set MSG_InstallingCatalogs  "Installo File-Catalogo per OS V2.1+\nLocalizzazione del Codice.")
  44.     (set MSG_SelectCatalogPath   "Seleziona percorso in cui installare i Cataloghi")
  45.     (set MSG_SuperViewPath       "Ora modifico la tua S:User-Startup per il percorso di ricerca...")
  46.     (set MSG_CopyPalette         "Copy SuperViewPalette to SYS:WBStartup ?\n(Not with MagicWB, etc.)")
  47.     (set MSG_RunLibInstaller     "Now install Library ?")
  48.     (set MSG_DoInstallSuperView  "SuperView è stato installato.")
  49.   )
  50. )
  51.  
  52. (set OS_VER (/ (getversion) 65536) )
  53.  
  54. (if(< OS_VER 37)
  55.   (abort MSG_wrong_OS)
  56. )
  57.  
  58. (complete 0)
  59.  
  60. (copyfiles
  61.   (prompt MSG_Installing)
  62.   (help @copyfiles-help)
  63.   (source "")
  64.   (set svcomdir
  65.               (askdir
  66.                      (prompt MSG_SelectPath)
  67.                      (help @askdir-help)
  68.                      (newpath)
  69.                      (default "SYS:SuperView")
  70.               )
  71.   )
  72.   (dest svcomdir)
  73.   (all)
  74.   (confirm)
  75. )
  76.  
  77. (complete 70)
  78.  
  79. (copyfiles
  80.   (prompt MSG_InstallingCatalogs)
  81.   (help @copyfiles-help)
  82.   (source "locale/catalogs")
  83.   (set svcomdir
  84.               (askdir
  85.                      (prompt MSG_SelectCatalogPath)
  86.                      (help @askdir-help)
  87.                      (newpath)
  88.                      (default "SYS:locale/Catalogs")
  89.               )
  90.   )
  91.   (dest svcomdir)
  92.   (all)
  93.   (confirm)
  94. )
  95.  
  96. (copyfiles
  97.   (prompt MSG_CopyPalette)
  98.   (help @copyfiles-help)
  99.   (source "Tools")
  100.   (dest "SYS:WBStartup")
  101.   (pattern "SuperViewPalette#?")
  102.   (confirm)
  103. )
  104.  
  105. (startup "SuperView"
  106.   (prompt MSG_SuperViewPath)
  107.   (help @startup-help)
  108.   (command "Path "svcomdir" ADD\n")
  109. )
  110.  
  111. (makeassign "IPROGDIR" "PROGDIR:" (safe))
  112. (set @execute-dir "SuperViewLibrary")
  113. (run (safe) "IPROGDIR:Installer Install_SVLib")
  114. (makeassign "IPROGDIR" "" (safe))
  115.  
  116. (complete 99)
  117.  
  118. (exit MSG_DoInstallSuperView)
  119.